3526dbc78de81285cb482f1b6227bd0f15ce1842,fuse/src/main/java/tachyon/fuse/TachyonFuseFs.java,TachyonFuseFs,readdir,#String#Pointer#FuseFillDir#number#FuseFileInfo#,374
Before Change
ret = ErrorCodes.EFAULT();
} catch (TachyonException e) {
LOG.error("TachyonException on {}", path, e);
ret = ErrorCodes.EFAULT();
} catch (Throwable e) {
LOG.error("Unexpected exception on {}", path, e);
ret = ErrorCodes.EFAULT();
After Change
return -ErrorCodes.EFAULT();
} catch (TachyonException e) {
LOG.error("TachyonException on {}", path, e);
return -ErrorCodes.EFAULT();
} catch (Throwable e) {
LOG.error("Unexpected exception on {}", path, e);
return -ErrorCodes.EFAULT();